home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WW3DKit / RIBCylinder.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  711 b   |  29 lines

  1. // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
  2. // see COPYRIGHT for reuse legalities
  3. //
  4.  
  5. #import <appkit/appkit.h>
  6.  
  7. #import "RIBQuadric.h"
  8.  
  9.  
  10. @interface RIBCylinder : RIBQuadric
  11. {
  12.   RtFloat radius, zMin, zMax;
  13. }
  14.  
  15. - setRadius:(RtFloat)newRadius 
  16.      zMin:(RtFloat)newZMin 
  17.      zMax:(RtFloat)newZMax
  18.      thetaMax:(RtFloat)newThetaMax 
  19.      n:(int)newN tokens:(RtToken *)newTokens parms:(RtPointer *)newParms archiveVector:(char **)newArchiveVector
  20.      printfTypeVector:(int *)newPrintfTypeVector printfNVector:(int *)newPrintfNVector;
  21. - setRadius:(RtFloat)newRadius;
  22. - setZMin:(RtFloat)newZMin;
  23. - setZMax:(RtFloat)newZMax;
  24. - (RtFloat)radius; 
  25. - (RtFloat)zMin; 
  26. - (RtFloat)zMax; 
  27.  
  28. @end
  29.